import { getLocalizedMdx } from "@/shared/lib/mdx/load-mdx"; import { Layout, LayoutContent } from "@/features/page/layout"; import { Typography } from "@/components/ui/typography"; type PageProps = { params: Promise<{ locale: string }>; }; export default async function SalesTermsPage({ params }: PageProps) { const { locale } = await params; const content = await getLocalizedMdx("sales-terms", locale); return (
{locale === "fr" ? "Les conditions qui régissent l’achat d’un abonnement Workout Cool." : "The terms governing the purchase of a Workout Cool subscription."}